home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1995 #5 & #6 / Amiga Plus CD - 1995 - No. 5 and 6.iso / pd / serien / purity / nr.46 / pcq-crt / crt.i < prev    next >
Text File  |  1995-04-18  |  937b  |  55 lines

  1. { Crt.i for PCQ-Pascal Copyright © 1995 by Andreas Tetzl }
  2. { Version 1.0 (15.04.1995) }
  3.  
  4. const   TS_Plain     = 0;
  5.         TS_Bold      = 1;
  6.         TS_Italics   = 3;
  7.         TS_Underline = 4;
  8.  
  9. PROCEDURE Locate(Zeile, Spalte : Byte);
  10.  External;
  11.  
  12. PROCEDURE ClrScr;
  13.  External;
  14.  
  15. PROCEDURE CursorOff;
  16.  External;
  17.  
  18. PROCEDURE CursorOn;
  19.  External;
  20.  
  21. PROCEDURE Bell;
  22.  External;
  23.  
  24. PROCEDURE MoveCursorUp(n : Byte);
  25.  External;
  26.  
  27. PROCEDURE MoveCursorDown(n : Byte);
  28.  External;
  29.  
  30. PROCEDURE MoveCursorLeft(n : Byte);
  31.  External;
  32.  
  33. PROCEDURE MoveCursorRight(n : Byte);
  34.  External;
  35.  
  36. PROCEDURE ResetConsole;
  37.  External;
  38.  
  39. PROCEDURE SetTextStyle(Style, fCol, bCol : Byte);
  40.  External;
  41.  
  42. PROCEDURE GetConSize(VAR Zeilen : Integer; VAR Spalten : Integer);
  43.  External;
  44.  
  45. PROCEDURE HorizTxtLine(x, y, w : Integer; c : Char);
  46.  External;
  47.  
  48. PROCEDURE TxtLine(x1, y1, x2, y2 : Integer; c : Char);
  49.  External;
  50.  
  51. PROCEDURE TxtRectFill(x, y, w, h : Integer; c : Char);
  52.  External;
  53.  
  54.  
  55.